@sumaris-net/ngx-components 1.23.35 → 1.23.37

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "1.23.35",
4
+ "version": "1.23.37",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -205,11 +205,10 @@ export declare class FormArrayHelper<T = Entity<any>, C extends AbstractControl
205
205
  at(index: number): C;
206
206
  /**
207
207
  * Resize the FormArray, then set values
208
- * @param data
208
+ * @param values
209
209
  * @param opts
210
210
  */
211
- setValue(data: T[], opts?: {
212
- onlySelf?: boolean;
211
+ setValue(values: T[], opts?: {
213
212
  emitEvent?: boolean;
214
213
  }): void;
215
214
  /**
@@ -218,7 +217,6 @@ export declare class FormArrayHelper<T = Entity<any>, C extends AbstractControl
218
217
  * @param opts
219
218
  */
220
219
  patchValue(data: T[], opts?: {
221
- onlySelf?: boolean;
222
220
  emitEvent?: boolean;
223
221
  }): void;
224
222
  disable(opts?: {