@expeed/ngx-data-mapper 1.3.2 → 1.3.3

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.
@@ -3132,8 +3132,7 @@ class FieldItemComponent {
3132
3132
  const index = this.field.children.indexOf(child);
3133
3133
  if (index > -1) {
3134
3134
  this.field.children.splice(index, 1);
3135
- this.cdr.detectChanges();
3136
- this.fieldChange.emit();
3135
+ // Don't emit fieldChange - array is mutated in place
3137
3136
  }
3138
3137
  }
3139
3138
  }
@@ -3148,8 +3147,7 @@ class FieldItemComponent {
3148
3147
  children: child.children ? this.cloneFields(child.children) : undefined,
3149
3148
  };
3150
3149
  this.field.children.splice(index + 1, 0, clone);
3151
- this.cdr.detectChanges();
3152
- this.fieldChange.emit();
3150
+ // Don't emit fieldChange - array is mutated in place
3153
3151
  }
3154
3152
  }
3155
3153
  }