@sumaris-net/ngx-components 2.1.4 → 2.1.5
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/src/app/core/form/form.utils.mjs +3 -3
- package/fesm2015/sumaris-net.ngx-components.mjs +2 -2
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +2 -2
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4640,11 +4640,11 @@ class AppFormArray extends UntypedFormArray {
|
|
|
4640
4640
|
}
|
|
4641
4641
|
}
|
|
4642
4642
|
disable(opts) {
|
|
4643
|
-
|
|
4643
|
+
super.disable(opts);
|
|
4644
4644
|
this.controls.forEach(c => c.disable(opts));
|
|
4645
4645
|
}
|
|
4646
4646
|
enable(opts) {
|
|
4647
|
-
|
|
4647
|
+
super.enable(opts);
|
|
4648
4648
|
this.controls.forEach(c => c.enable(opts));
|
|
4649
4649
|
}
|
|
4650
4650
|
forEach(ite) {
|