@sumaris-net/ngx-components 2.1.4-rc1 → 2.1.4-rc2

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.
@@ -4513,9 +4513,6 @@ class FormArrayHelper {
4513
4513
  add(value, options) {
4514
4514
  return pushValueInArray(this._formArray, this.createControl, this.equals, this.isEmpty, value, options);
4515
4515
  }
4516
- push(value, options) {
4517
- return pushValueInArray(this._formArray, () => this.createControl(value), this.equals, this.isEmpty, value, options);
4518
- }
4519
4516
  removeAt(index) {
4520
4517
  // Do not remove if last criterion
4521
4518
  if (!this._allowEmptyArray && this._formArray.length === 1) {