iptdevs-design-system 2.7.39 → 2.7.40

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.
@@ -1759,9 +1759,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
1759
1759
 
1760
1760
  class QuestionTypeComponent {
1761
1761
  ngOnChanges(changes) {
1762
- if (changes['questionType']) {
1763
- console.log(this.questionType);
1764
- console.log(this.formGruoup);
1762
+ if (changes['formGruoup']) {
1763
+ console.log('a change in form group has ocurr');
1764
+ console.log(this.formGruoup.controls['value1'].value);
1765
+ console.log(this.formGruoup.controls['value2'].value);
1766
+ console.log(this.formGruoup.controls['value3'].value);
1767
+ console.log(this.formGruoup.controls['value4'].value);
1765
1768
  }
1766
1769
  }
1767
1770
  }