iptdevs-design-system 3.1.117 → 3.1.118
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/cod-form/cod-form.component.mjs +2 -1
- package/esm2020/lib/cod/steps/cod-form-step-five/cod-form-step-five.component.mjs +2 -1
- package/esm2020/lib/core/models/cod/cod-rq.model.mjs +1 -1
- package/fesm2015/iptdevs-design-system.mjs +2 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/cod/cod-rq.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4290,6 +4290,7 @@ class CodFormStepFiveComponent extends CodFormSteps {
|
|
|
4290
4290
|
this.codFormStepFive.controls['name_refers'].setValue(null);
|
|
4291
4291
|
this.codFormStepFive.controls['phone_refers'].setValue(null);
|
|
4292
4292
|
this.codFormStepFive.controls['email_refers'].setValue(null);
|
|
4293
|
+
this.codFormStepFive.controls['marketing_reasons'].setValue(null);
|
|
4293
4294
|
}
|
|
4294
4295
|
}
|
|
4295
4296
|
openModalReferred() {
|
|
@@ -4506,6 +4507,7 @@ class CodFormComponent {
|
|
|
4506
4507
|
country: data.filter(data => data.control === 'country')[0].value,
|
|
4507
4508
|
state: data.filter(data => data.control === 'state')[0].value,
|
|
4508
4509
|
academic_plan: data.filter(data => data.control === 'academic_plan')[0].value,
|
|
4510
|
+
code_refers: data.filter(data => data.control === 'code_refers')[0].value,
|
|
4509
4511
|
};
|
|
4510
4512
|
console.log(request);
|
|
4511
4513
|
return request;
|