@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/bundles/sumaris-net.ngx-components.umd.js +11 -5
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/form/form.utils.js +10 -6
- package/fesm2015/sumaris-net.ngx-components.js +9 -5
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/form.utils.d.ts +2 -4
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -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
|
|
208
|
+
* @param values
|
|
209
209
|
* @param opts
|
|
210
210
|
*/
|
|
211
|
-
setValue(
|
|
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?: {
|