iptdevs-design-system 3.1.948 → 3.1.949
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 +8 -4
- package/fesm2015/iptdevs-design-system.mjs +7 -3
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +7 -3
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5072,10 +5072,14 @@ class CodFormStepTwoComponent extends CodFormSteps {
|
|
|
5072
5072
|
}
|
|
5073
5073
|
trackStudentIdCardChanges() {
|
|
5074
5074
|
console.log('trackStudentIdCardChanges called'); // Depuración
|
|
5075
|
-
this.codFormStepTwo.
|
|
5076
|
-
|
|
5077
|
-
this.updateIdTypes(
|
|
5075
|
+
const control = this.codFormStepTwo.get('student_id_card');
|
|
5076
|
+
control?.valueChanges.subscribe((change) => {
|
|
5077
|
+
this.updateIdTypes(change);
|
|
5078
5078
|
});
|
|
5079
|
+
// this.codFormStepTwo.controls['student_id_card'].valueChanges.subscribe(value => {
|
|
5080
|
+
// console.log('student_id_card value:', value); // Depuración
|
|
5081
|
+
// this.updateIdTypes(value);
|
|
5082
|
+
// });
|
|
5079
5083
|
}
|
|
5080
5084
|
updateIdTypes(value) {
|
|
5081
5085
|
console.log('updateIdTypes called with value:', value); // Depuración
|