@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/bundles/sumaris-net.ngx-components.umd.js +19 -1
- 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/editor.class.js +10 -1
- package/esm2015/src/app/core/form/form.utils.js +11 -2
- package/fesm2015/sumaris-net.ngx-components.js +19 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/form.utils.d.ts +10 -1
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -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
|
|
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;
|