@sumaris-net/ngx-components 1.19.6 → 1.19.7
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 +69 -5
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +2 -2
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/doc/changelog.md +14 -0
- package/esm2015/src/app/core/form/entity-editor.class.js +3 -2
- package/esm2015/src/app/core/services/model/entity.model.js +2 -2
- package/esm2015/src/app/shared/guard/component-dirty.guard.js +3 -3
- package/esm2015/src/app/shared/pipes/form.pipes.js +62 -2
- package/esm2015/src/app/shared/pipes/pipes.module.js +4 -3
- package/fesm2015/sumaris-net.ngx-components.js +67 -6
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/pipes/form.pipes.d.ts +15 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -29,3 +29,18 @@ export declare class FormGetArrayPipe implements PipeTransform {
|
|
|
29
29
|
export declare class FormGetGroupPipe implements PipeTransform {
|
|
30
30
|
transform(form: AbstractControl, path: Array<string | number> | string): FormGroup;
|
|
31
31
|
}
|
|
32
|
+
export declare class FormGetValuePipe implements PipeTransform {
|
|
33
|
+
private adapter;
|
|
34
|
+
private _ref;
|
|
35
|
+
value: any;
|
|
36
|
+
private _lastControl;
|
|
37
|
+
private _lastPath;
|
|
38
|
+
private _onControlValueChanges;
|
|
39
|
+
constructor(adapter: FormErrorTranslator, _ref: ChangeDetectorRef);
|
|
40
|
+
transform(form: AbstractControl, path?: Array<string | number> | string): any;
|
|
41
|
+
ngOnDestroy(): void;
|
|
42
|
+
/**
|
|
43
|
+
* Clean any existing subscription to change events
|
|
44
|
+
*/
|
|
45
|
+
private _dispose;
|
|
46
|
+
}
|