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.
@@ -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]],