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.
- package/esm2020/lib/components/molecules/question-type/edit-question-types.component.mjs +7 -4
- package/fesm2015/iptdevs-design-system.mjs +6 -3
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +6 -3
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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['
|
|
1763
|
-
console.log(
|
|
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
|
}
|