@sumaris-net/ngx-components 2.2.1-rc3 → 2.2.1-rc4
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/shared/forms.mjs +12 -12
- package/fesm2015/sumaris-net.ngx-components.mjs +11 -11
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +11 -11
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/forms.d.ts +2 -2
package/package.json
CHANGED
|
@@ -41,11 +41,11 @@ export declare function addValueInArray(arrayControl: UntypedFormArray, createCo
|
|
|
41
41
|
}): boolean;
|
|
42
42
|
/**
|
|
43
43
|
* Set an array using given default values. Each default value will be pass to the 'createControl()' function
|
|
44
|
-
* @param
|
|
44
|
+
* @param arrayControl
|
|
45
45
|
* @param createControl
|
|
46
46
|
* @param values
|
|
47
47
|
*/
|
|
48
|
-
export declare function initArrayControlsFromValues(
|
|
48
|
+
export declare function initArrayControlsFromValues(arrayControl: UntypedFormArray, createControl: (value?: any) => AbstractControl, defaultValues: any[], options?: {
|
|
49
49
|
emitEvent?: boolean;
|
|
50
50
|
}): boolean;
|
|
51
51
|
export declare function resizeArray(arrayControl: UntypedFormArray, createControl: () => AbstractControl, length: number, options?: {
|