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

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": "2.1.4-rc2",
4
+ "version": "2.1.4-rc3",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -268,11 +268,12 @@ export declare class AppFormArray<T extends Entity<T>, C extends AbstractControl
268
268
  add(value?: T, options?: {
269
269
  emitEvent: boolean;
270
270
  }): boolean;
271
- push(value?: T, options?: {
271
+ removeAt(index: number, options?: {
272
272
  emitEvent: boolean;
273
- }): boolean;
274
- removeAt(index: number): boolean;
275
- clearAt(index: number): boolean;
273
+ }): void;
274
+ clearAt(index: number, options?: {
275
+ emitEvent: boolean;
276
+ }): void;
276
277
  isLast(index: number): boolean;
277
278
  removeAllEmpty(): void;
278
279
  disable(opts?: {