@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/esm2020/src/app/core/form/form.utils.mjs +19 -10
- package/esm2020/src/app/shared/forms.mjs +1 -1
- package/fesm2015/sumaris-net.ngx-components.mjs +17 -8
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +17 -8
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/form.utils.d.ts +5 -4
package/package.json
CHANGED
|
@@ -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
|
-
|
|
271
|
+
removeAt(index: number, options?: {
|
|
272
272
|
emitEvent: boolean;
|
|
273
|
-
}):
|
|
274
|
-
|
|
275
|
-
|
|
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?: {
|