@sumaris-net/ngx-components 1.23.32 → 1.23.34

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.32",
4
+ "version": "1.23.34",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -204,7 +204,7 @@ export declare class FormArrayHelper<T = Entity<any>, C extends AbstractControl
204
204
  size(): number;
205
205
  at(index: number): C;
206
206
  /**
207
- * Resize the FormArray, then apply values
207
+ * Resize the FormArray, then set values
208
208
  * @param data
209
209
  * @param opts
210
210
  */
@@ -212,6 +212,15 @@ export declare class FormArrayHelper<T = Entity<any>, C extends AbstractControl
212
212
  onlySelf?: boolean;
213
213
  emitEvent?: boolean;
214
214
  }): void;
215
+ /**
216
+ * Resize the FormArray, then patch values
217
+ * @param data
218
+ * @param opts
219
+ */
220
+ patchValue(data: T[], opts?: {
221
+ onlySelf?: boolean;
222
+ emitEvent?: boolean;
223
+ }): void;
215
224
  disable(opts?: {
216
225
  onlySelf?: boolean;
217
226
  emitEvent?: boolean;