iptdevs-design-system 3.1.806 → 3.1.807
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-four/cod-form-step-four.component.mjs +2 -2
- package/esm2020/lib/cod/steps/cod-form-step-two/cod-form-step-two.component.mjs +2 -2
- package/fesm2015/iptdevs-design-system.mjs +2 -2
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -2
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3971,7 +3971,7 @@ class CodFormStepTwoComponent extends CodFormSteps {
|
|
|
3971
3971
|
initForm() {
|
|
3972
3972
|
this.codFormStepTwo = this.fb.group({
|
|
3973
3973
|
student_address: ['', [Validators.required], []],
|
|
3974
|
-
birthdate: ['', [Validators.required], []],
|
|
3974
|
+
birthdate: [new Date().toISOString().split('T')[0], [Validators.required], []],
|
|
3975
3975
|
country: ['', [Validators.required], []],
|
|
3976
3976
|
state: ['', [Validators.required], []],
|
|
3977
3977
|
city: ['', [Validators.required], []],
|
|
@@ -4624,7 +4624,7 @@ class CodFormStepFourComponent extends CodFormSteps {
|
|
|
4624
4624
|
initForm() {
|
|
4625
4625
|
this.codFormStepFour = this.fb.group({
|
|
4626
4626
|
program_price: [{ value: '', disabled: true }, [Validators.required]],
|
|
4627
|
-
payment_date: ['', [Validators.required]],
|
|
4627
|
+
payment_date: [new Date().toISOString().split('T')[0], [Validators.required]],
|
|
4628
4628
|
payment_method: ['', [Validators.required]],
|
|
4629
4629
|
quota_times: [{ value: '', disabled: true }, [Validators.required]],
|
|
4630
4630
|
total_price: [{ value: '', disabled: true }, [Validators.required]],
|