@sumaris-net/ngx-components 1.23.28 → 1.23.30
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 +10 -4
- 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/doc/changelog.md +6 -0
- package/esm2015/src/app/core/form/form.utils.js +10 -1
- package/esm2015/src/app/shared/services/memory-entity-service.class.js +2 -4
- package/fesm2015/sumaris-net.ngx-components.js +10 -3
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/form.utils.d.ts +9 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -197,6 +197,15 @@ export declare class FormArrayHelper<T = Entity<any>, C extends AbstractControl
|
|
|
197
197
|
removeAllEmpty(): void;
|
|
198
198
|
size(): number;
|
|
199
199
|
at(index: number): C;
|
|
200
|
+
/**
|
|
201
|
+
* Resize the FormArray, then apply values
|
|
202
|
+
* @param data
|
|
203
|
+
* @param opts
|
|
204
|
+
*/
|
|
205
|
+
setValue(data: T[], opts?: {
|
|
206
|
+
onlySelf?: boolean;
|
|
207
|
+
emitEvent?: boolean;
|
|
208
|
+
}): void;
|
|
200
209
|
disable(opts?: {
|
|
201
210
|
onlySelf?: boolean;
|
|
202
211
|
emitEvent?: boolean;
|